home *** CD-ROM | disk | FTP | other *** search
/ The Latest & Greatest Top 201 Games / The Latest and Greatest Top 201 Games (Maple Media)(1994).iso / cwbs23 / install.bat < prev    next >
DOS Batch File  |  1994-02-27  |  1KB  |  63 lines

  1. echo off
  2. cls
  3. echo ════════════════════════════════════════════════════════════
  4. echo    Install program for EGA CivilWar BattleSet v2.3
  5. echo                  S H A R E W A R E
  6. echo ════════════════════════════════════════════════════════════
  7. echo  
  8.  
  9. if "%1" == "" goto howto
  10.  
  11. if exist cw.exe goto proceed
  12. if not exist cw.exe goto howto
  13.  
  14. :proceed
  15. if not exist install.bat goto howto
  16.  
  17. echo  
  18. echo Civil War installation
  19. echo This will create a directory called \Civil23 on the '%1' disk
  20. echo and copy the game files into it.
  21. echo  
  22. echo It will NOT make any other changes to your system.
  23. echo  
  24. echo Hit Ctrl-C if you do NOT wish to continue
  25.  
  26. pause
  27.  
  28. echo Creating directory '\Civil23' on '%1' drive
  29. mkdir %1\Civil23
  30.  
  31. echo  
  32.  
  33. echo Copying files...
  34. xcopy *.* %1\Civil23
  35. echo Changing to Civil War Directory...
  36. %1
  37. cd\Civil23
  38. unzip doc.zip
  39. cls
  40. echo Cleaning up...
  41. del *.zip
  42. del install.bat
  43. echo  
  44. echo EGA CivilWar BattleSet is now installed !
  45. echo To play the game type:
  46. echo CW
  47. echo To use the editor type:
  48. echo CS
  49. goto done4
  50.  
  51. :howto
  52. echo Place Master Disk in drive and go to that drive and type
  53. echo "INSTALL DRIVE:" where DRIVE: is the TARGET drive.
  54. echo  
  55. echo EXAMPLE:
  56. echo To copy the game from the A: drive to the C: drive,
  57. echo you would type
  58. echo            A:          [enter]
  59. echo            INSTALL C:  [enter]
  60. echo If your target disk is a drive other than C: use its letter instead.
  61.  
  62. :done4
  63.